home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 4 / Meeting Pearls Vol. IV (1996)(GTI - Schatztruhe)[!].iso / Pearls / libs / MCC_Busy / Developer / c / Include / mui / Busy_mcc.h
C/C++ Source or Header  |  1996-09-11  |  949b  |  73 lines

  1. /*
  2.  
  3.         MCC_Busy (c) by kMel, Klaus Melchior
  4.  
  5.         Registered class of the Magic User Interface.
  6.  
  7.         Busy_mcc.h
  8.  
  9. */
  10.  
  11.  
  12. /*** Include stuff ***/
  13.  
  14. #ifndef BUSY_MCC_H
  15. #define BUSY_MCC_H
  16.  
  17. #ifndef LIBRARIES_MUI_H
  18. #include "libraries/mui.h"
  19. #endif
  20.  
  21.  
  22. /*** MUI Defines ***/
  23.  
  24. #define MUIC_Busy "Busy.mcc"
  25. #define BusyObject MUI_NewObject(MUIC_Busy
  26.  
  27. #define BusyBar\
  28.     BusyObject,\
  29.         MUIA_Busy_Speed, MUIV_Busy_Speed_User,\
  30.         End
  31.  
  32.  
  33.  
  34. /*** Methods ***/
  35.  
  36. #define MUIM_Busy_Move           0x80020001
  37.  
  38. /*** Method structs ***/
  39.  
  40. struct MUIP_Busy_Move {
  41.     ULONG MethodID;
  42. };
  43.  
  44.  
  45. /*** Special method values ***/
  46.  
  47.  
  48. /*** Special method flags ***/
  49.  
  50.  
  51.  
  52. /*** Attributes ***/
  53.  
  54. #define MUIA_Busy_Speed          0x80020049
  55.  
  56. /*** Special attribute values ***/
  57.  
  58. #define MUIV_Busy_Speed_Off              0
  59. #define MUIV_Busy_Speed_User            -1
  60.  
  61.  
  62.  
  63. /*** Structures, Flags & Values ***/
  64.  
  65.  
  66.  
  67.  
  68.  
  69. #endif /* BUSY_MCC_H */
  70.  
  71. /* PrMake.rexx 0.10 (16.2.1996) Copyright 1995 kmel, Klaus Melchior */
  72.  
  73.